【例子介绍】thriftTest java案例代码
windows上开发java thrift 的案例代码
【相关图片】
【源码结构】
文件清单
└── thriftTest
├── bin
│ └── com
│ └── zamplus
│ ├── server
│ │ ├── Client.class
│ │ ├── HelloImpl.class
│ │ └── Server.class
│ └── thrift
│ └── test
│ ├── Hello$AsyncClient$Factory.class
│ ├── Hello$AsyncClient$helloString_call.class
│ ├── Hello$AsyncClient.class
│ ├── Hello$AsyncIface.class
│ ├── Hello$Client$Factory.class
│ ├── Hello$Client.class
│ ├── Hello$helloString_args$_Fields.class
│ ├── Hello$helloString_args$helloString_argsStandardScheme.class
│ ├── Hello$helloString_args$helloString_argsStandardSchemeFactory.class
│ ├── Hello$helloString_args$helloString_argsTupleScheme.class
│ ├── Hello$helloString_args$helloString_argsTupleSchemeFactory.class
│ ├── Hello$helloString_args.class
│ ├── Hello$helloString_result$_Fields.class
│ ├── Hello$helloString_result$helloString_resultStandardScheme.class
│ ├── Hello$helloString_result$helloString_resultStandardSchemeFactory.class
│ ├── Hello$helloString_result$helloString_resultTupleScheme.class
│ ├── Hello$helloString_result$helloString_resultTupleSchemeFactory.class
│ ├── Hello$helloString_result.class
│ ├── Hello$Iface.class
│ ├── Hello$Processor$helloString.class
│ ├── Hello$Processor.class
│ └── Hello.class
├── lib
│ ├── libthrift-0.9.0.jar
│ ├── slf4j-api-1.7.5.jar
│ └── slf4j-simple-1.7.5.jar
├── src
│ └── com
│ └── zamplus
│ ├── server
│ │ ├── Client.java
│ │ ├── HelloImpl.java
│ │ └── Server.java
│ └── thrift
│ └── test
│ └── Hello.java
└── test.thrift
14 directories, 33 files
评论